home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Power 1997 December
/
MACPOWER-1997-12.ISO.7z
/
MACPOWER-1997-12.ISO
/
AMUG
/
PROGRAMMING
/
Raven 1.2 Examples.sit
/
Raven 1.2 Examples
/
Quill
/
Source
/
WindowNode.h
< prev
next >
Wrap
Text File
|
1997-01-18
|
1KB
|
49 lines
/*
* File: WindowNode.h
* Summary: A node representing a window resource for use in a THierarchicalTable.
* Written by: Jesse Jones
*
* Copyright ゥ 1997 Jesse Jones.
* For conditions of distribution and use, see copyright notice in ZTypes.h
*
* Change History (most recent first):
*
* <-> 1/17/96 JDJ Created
*/
#pragma once
#include "ResourceNode.h"
// ===================================================================================
// class CWindowNode
// ===================================================================================
class CWindowNode : public CResourceNode {
typedef CResourceNode Inherited;
//-----------------------------------
// Initialization/Destruction
//
public:
virtual ~CWindowNode();
CWindowNode(THierarchicalTable* table, CResourceMap* rsrcMap);
CWindowNode(THierarchicalTable* table, TSubNode* parent,
CResourceMap* rsrcMap, ResID id);
virtual CResourceNode* Make(TSubNode* parent, ResID id);
//-----------------------------------
// New API
//
public:
virtual void EditResource();
};